Syntax | Description | Example |
---|---|---|
AND(b1[, b2, ..., bN]) | Returns TRUE if all arguments are TRUE. If any of the arguments is FALSE, the AND function returns FALSE. |
AND(true, false) |
NOT(bCondition) | Returns TRUE if condition is FALSE. Otherwise, it returns FALSE. |
NOT(true) |
OR(b1[, b2, ..., bN]) | Returns TRUE if any of the arguments is TRUE. Otherwise, it returns FALSE. |
OR(true, false) |
XOR(b1[, b2, ..., bN]) | Returns TRUE if the arguments differ. Otherwise, it returns FALSE. |
XOR(true, false) |